home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / Sherlock 2.0 / DevLibSrc / Main_DevLib / LIBdialog.h < prev    next >
Text File  |  1994-01-07  |  585b  |  30 lines

  1. /*
  2.     devlib: header file for Macintosh dialogs.
  3.     
  4.     source: mac_dialog.h
  5.     started: September 24, 1993.
  6.     version: January 7, 1994.
  7. */
  8.  
  9. #ifndef mac_dialog_h_
  10. #define mac_dialog_h_
  11.  
  12. #pragma once
  13.  
  14. #include <Dialogs.h>
  15.  
  16.     /* mac_about_dialog.c */
  17.  
  18. void    about_dialog    (void);
  19.  
  20.     /* mac_dialog_util.c */
  21.  
  22. void    center_dialog    (DialogPtr dp);
  23. int     getControl        (DialogPtr dp, short item);
  24. void    hiliteButton    (DialogPtr dp);
  25. void    hilite2Buttons    (DialogPtr dp);
  26. void    hiliteControl    (DialogPtr dp, short item, int value);
  27. void    setControl        (DialogPtr dp, short item, int value);
  28.  
  29. #endif /* mac_dialog_h_ */
  30.